home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / contrib / edb / gc-inc < prev    next >
Text File  |  2000-03-25  |  216b  |  8 lines

  1. #include <gc.h>
  2. #define malloc(n) GC_malloc(n)
  3. #define calloc(m,n) GC_malloc((m)*(n))
  4. #define realloc(p,n) GC_realloc((p),(n))
  5. #define free(p) GC_free(p)
  6. #define gc_is_off GC_dont_gc
  7. #define gc_start() GC_gcollect()
  8.